home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Graphics3D / Sources / Content.h < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.2 KB  |  41 lines  |  [TEXT/CWIE]

  1. //    Release Version:    $ ODF 1 $
  2. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  3.  
  4. #ifndef CONTENT_H
  5. #define CONTENT_H
  6.  
  7. //========================================================================================
  8. #ifndef DEFINES_K
  9. #include "Defines.k"
  10. #endif
  11.  
  12. // ----- Framework Includes -----
  13. #ifndef FWCONTNT_H
  14. #include "FWContnt.h"
  15. #endif
  16.  
  17. #include "QD3DViewer.h"
  18.  
  19. //========================================================================================
  20. class CGraphics3DPart;
  21.  
  22. //========================================================================================
  23. class CGraphics3DContent : public FW_CContent {
  24. public:
  25.     FW_DECLARE_AUTO(CGraphics3DContent)
  26.                         CGraphics3DContent(Environment* ev, CGraphics3DPart* part);
  27.     virtual             ~CGraphics3DContent();
  28. // overrides
  29. protected:
  30.     virtual void        Externalize(Environment* ev,
  31.                                      ODStorageUnit* storageUnit,
  32.                                      FW_EStorageKinds storageKind,
  33.                                      FW_CCloneInfo* cloneInfo);
  34.     virtual FW_Boolean    Internalize(Environment* ev,
  35.                                      ODStorageUnit* storageUnit, 
  36.                                      FW_EStorageKinds storageKind,
  37.                                      FW_CCloneInfo* cloneInfo);
  38. };
  39.  
  40. //========================================================================================
  41. #endif